15f75f8d11f47df152b081551c3e76868af0745c,Mage.Sets/src/mage/sets/tempest/Propaganda.java,PropagandaReplacementEffect,replaceEvent,#GameEvent#Ability#Game#,87

Before Change


				if ( propagandaTax.canPay(source.getSourceId(), event.getPlayerId(), game) &&
					 player.chooseUse(Constants.Outcome.Neutral, "Pay {2} to declare attacker?", game) )
				{
					propagandaTax.pay(source, game, this.getId(), event.getPlayerId(), false);

					if ( propagandaTax.isPaid() ) {
						return false;
					}
				}

After Change


				if ( propagandaTax.canPay(source.getSourceId(), event.getPlayerId(), game) &&
					 player.chooseUse(Constants.Outcome.Neutral, "Pay {2} to declare attacker?", game) )
				{
					if (propagandaTax.payOrRollback(source, game, this.getId(), event.getPlayerId()) ) {
						return false;
					}
				}